generateconfiguredmodel.spec.js ➔ describe(ꞌConfigured Model Generatorꞌ)   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 1
nc 1
nop 0

2 Functions

Rating   Name   Duplication   Size   Complexity  
A generateconfiguredmodel.spec.js ➔ ... ➔ it(ꞌAuto model should existꞌ) 0 3 1
A generateconfiguredmodel.spec.js ➔ ... ➔ it(ꞌCar model should existꞌ) 0 3 1
1
describe('Configured Model Generator', function () {
2
    it('Auto model should exist', function() {
3
        expect(Test.model.Auto).toBeDefined();
0 ignored issues
show
Bug introduced by
The variable Test seems to be never declared. If this is a global, consider adding a /** global: Test */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
4
    });
5
    it('Car model should exist', function() {
6
        expect(Test.TestBundle.Entity.Car).toBeDefined();
0 ignored issues
show
Bug introduced by
The variable Test seems to be never declared. If this is a global, consider adding a /** global: Test */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
7
    });
8
});